home *** CD-ROM | disk | FTP | other *** search
Text File | 1992-10-22 | 2.7 KB | 72 lines | [TEXT/MPS ] |
- /************** AppleTalk.c **************/
-
- OSErr ATInit(void);
- /* Currently does nothing. Calling it allows the AppleTalk.c.o file to be needed
- ** by the link. */
-
- OSErr DoBuildZoneList(ListHandle listHndl);
- /* Given a list record, this function places all of the zone names in
- ** the list. Prior to calling this function, you need to create a
- ** list record that has zero rows and one column. The zones are added
- ** to the list in the column in alphabetical order. The function
- ** IUMagString is used to determine order. */
-
- OSErr HiliteUserZone(ListHandle listHndl);
- /* Given a list of zones (probably generated by DoBuildZoneList), this
- ** function selects the zone the user is currently in. The current zone
- ** is selected and scrolled into view. */
-
- OSErr AddPPCNBPAlias(NamesTableEntry *theNTE, Str32 newNBPType, EntityName *newEntity);
- /* This function registers an alias for the application. This allows PPCBrowser
- ** to be used to display only machines registered with that alias, instead of
- ** all machines that are PPCToolbox capable. This function is called by
- ** the application at startup time, as the alias only needs to be registered once.
- ** If there is more than one version of the application running on a single
- ** machine, AddPPCNBPAlias will append a number to the application name.
- ** This allows each copy of the application to be displayed by PPCBrowser. */
-
- OSErr RemoveNBPAlias(EntityPtr theEntity);
- /* This function removes the designated alias. This is executed by the application
- ** at application quit time. */
-
-
- /************** GWLayers.c **************/
- /* There is plenty of information elsewhere. See the files:
- ** =Using GWLayers.c
- ** GWLayers.c (has a header of comments describing usage)
- ** GWLayers.h (prototype + description of each function)
-
-
-
- /************** ListControl.c **************/
- /* There is plenty of information elsewhere. See the files:
- ** =Using ListControl.c
- ** ListControl.c (has a header of comments describing usage) */
-
-
-
- /************** PPC.c **************/
-
- OSErr DoIPCListPorts(short *sindx, short *reqCount, short *actCount,
- LocationNamePtr loc,
- PortInfoArrayPtr retInfo,
- PPCFilterProcPtr filter)
- /* Used to generate a list of IPC ports, given a target. For an exmaple usage,
- ** see the file AEChess.c in the sample application Kibitz. */
-
-
-
- /************** TextEditControl.c **************/
- /* There is plenty of information elsewhere. See the files:
- ** =Using TextEditControl.c
- ** TextEditControl.c (has a header of comments describing usage) */
-
-
-
- /************** Utilities.c **************/
- /* You can find information on the Utilities.c functions in the file Utilities.h
- ** Utilities.h has prototypes and descriptions of all of the functions. */
-
-
-
-